GitBucket
4.21.2
Toggle navigation
Snippets
Sign in
Files
Branches
1
Releases
Issues
Pull requests
Labels
Priorities
Milestones
Wiki
Forks
mark.george
/
Wiki
Compare Revisions
View Page
Back to Page History
tmux.md
### Create new session ``` tmux ``` ### Detach from session <kbd>ctrl</kbd>+<kbd>b</kbd> <kbd>d</kbd> ### Attach to existing session ``` tmux attach ``` If you forgot to detach then you won't be able to attach unless you detach existing sessions using: ``` tmux attach -d ``` ### View sessions/windows In `tmux` you can use: <kbd>ctrl</kbd>+<kbd>b</kbd> <kbd>w</kbd> From command line you can use: ``` # view sessions tmux ls # attach to specific session tmus attach -t <session ID> ```
### Create new session ``` tmux ``` ### Detach from session <kbd>ctrl</kbd>+<kbd>b</kbd> <kbd>d</kbd> ### Attach to existing session ``` tmux attach ``` If you forgot to detach then you won't be able to attach unless you detach existing sessions using: ``` tmux attach -d ```